home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-12-17 | 933 b | 23 lines | [TEXT/PJMM] |
- unit ParameterDef;
-
- interface
-
- type
- parameterRecord = record
- fingeredname: stringPtr; { Input - finger name }
- param: stringPtr; { Input - parameter following special }
- returnvalue: stringPtr; { Output - return string, appeneded to finger output. Don't change ptr! }
- fingeroutput: handle; { Input/Output - finger output as its built. }
- hlength: longInt; { Input /Output - handle length. }
- offset: longInt; { Input/Output - offset from start of handle that finger output is up to }
- idle: longInt; { Input - Idle time in seconds }
- remoteIP: longInt; { Input - IP number of fingerer }
- expandtokens: boolean; { Output - Expand <cr>s and %tokens inserted into the fingeroutput handle }
- { Note: No extra expansion is done for strings. If you have <cr>s in them, put <cr><lf> instead. }
- end;
-
- { procedure Main (var p: parameterRecord); }
-
- implementation
-
- end.